home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 2002 November / SGI Freeware 2002 November - Disc 3.iso / dist / fw_qt3.idb / usr / freeware / Qt / examples / action / actiongroup / main.cpp.z / main.cpp
C/C++ Source or Header  |  2002-04-08  |  284b  |  18 lines

  1. /*
  2. $Id$
  3. */  
  4.  
  5. #include <qapplication.h>
  6.  
  7. #include "editor.h"
  8.  
  9. int main( int argc, char ** argv)
  10. {
  11.     QApplication app( argc, argv );
  12.     Editor editor;
  13.     editor.setCaption( "Qt Example - Actiongroup" );
  14.     app.setMainWidget( &editor );
  15.     editor.show();
  16.     return app.exec();
  17. }
  18.